home *** CD-ROM | disk | FTP | other *** search
- -- Split Framed Story
- -- 5 Nov 96, vs
- -- This script will unthread two threaded
- -- frames. You need to select both frames
- -- before running the script.
- -- (Caution: If the text blocks contain hyperlink
- -- sources or anchors, they may be moved to an
- -- unexpected position by this script.)
-
- getselectidlist >> n,id1,z1,...,...,...,...,...,...,...,...,...,...,...,...,...,id2,z2,...
- if not(n=2)
- message "Invalid state."
- message "Two adjacent frames should be selected."
- return
- endif
- selectid id1
- getisframe >> f1
- try getnextframe 1 >> id1.prev
- try getnextframe 0 >> id1.next
- selectid id2
- getisframe >> f2
- try getnextframe 1 >> id2.prev
- try getnextframe 0 >> id2.next
- if f1*f2=0
- message "Invalid state."
- message "Two adjacent frames should be selected."
- return
- endif
- if (id2.next=id1)*(id1.prev=id2)
- id1,id2=id2,id1
- id1.prev,id2.prev=id2.prev,id1.prev
- id1.next,id2.next=id2.next,id1.next
- endif
- if (id1.next=id2)*(id2.prev=id1)=0
- message "Invalid state."
- message "Two adjacent frames should be selected."
- return
- endif
- selectid id2
- textedit
- gettextcursor >>...,pos,...
- selectall
- gettextcursor >> ...,...,end
- settextcursor -2,pos,end
- cut
- lst = id2
- selectid id2
- repeat
- getnextframe 0 >> id3
- if id3>0
- selectid id3
- lst = lst,id3
- endif
- until not(id3>0)
- loop i=1,len(lst)
- selectid lst(i)
- breaklinks
- endloop
- linkframes len(lst),lst
- selectid id2
- getselectinfo >> l,t,r,b
- newstory (l+r)/2,(t+b)/2
- paste
- deselect
- selectid id1
- selectidextend id2
- return
-